home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM 1996 Fall / BMUG Fall'96 PD-ROM.iso / Education / Math / MathPad 2.4 / intro help / intro help.rsrc / TEXT_134_Graphing Functions.txt < prev    next >
Text File  |  1996-03-26  |  624b  |  19 lines

  1. -- To plot an expression, specify the range of X values and an expression for Y. Clicking the mouse on the plot will show the trace number and the X,Y value of the plotted point nearest to the click.
  2.  
  3.  Xmin=-10
  4.  Xmax=10
  5.  plot X^2
  6.  
  7. -- The plot command steps the special variable X (upper case) between Xmin and Xmax and plots the resulting values. Aribtrary expressions can be built using variables and/or functions.
  8.  
  9.  y = t^3
  10.  t = X
  11.  plot y
  12.  
  13.  f(u) = -u^3
  14.  plot f(X)
  15.  
  16. -- You can control the range of Y values shown by setting Ymin and Ymax. If Ymin and Ymax are not specified, MathPad will auto range.
  17.  
  18.  Ymin=-500;  Ymax=500
  19.